☁️ Loving our new documentation website? Provide feedback in the CloudCannon Community! ✨

name

Table of contents

Description:

This key defines the text displayed for a URL option in the + Add button dropdown.

Appears in:
└── collections_config
    └── *
        └── add_options
            └── [*]
                └── HREF Add Option
                    └── name
Type:
string
Examples:

In this example, the + Add button dropdown in the team Collection browser uses a link option with the text "Office Locations" to navigate to the Office Locations page on our live website.

Copied to clipboard
collections_config:
  team:
    add_options:
      - name: Office Locations
        icon: map
        href: /our-offices
{
  "collections_config": {
    "team": {
      "add_options": [
        {
          "name": "Office Locations",
          "icon": "map",
          "href": "/our-offices"
        }
      ]
    }
  }
}
Open in a new tab